home *** CD-ROM | disk | FTP | other *** search
/ PC Format 4 (5.25") / PC Format - Issue 4 January 1992 - Disk 2.ima / PCF.BAT < prev    next >
DOS Batch File  |  1994-08-29  |  1KB  |  101 lines

  1. echo off
  2. cls
  3.  
  4. :start
  5. nocurs
  6. disp pcfiss4 2
  7. getkey xfv
  8.  
  9. if errorlevel 3 goto vgacad
  10. if errorlevel 2 goto freecell
  11. if errorlevel 1 goto quit
  12.  
  13. :vgacad
  14. disp pcfiss41 2
  15. getkey abcm
  16.  
  17. if errorlevel 4 goto start
  18. if errorlevel 3 goto ccopy
  19. if errorlevel 2 goto bcopy
  20. if errorlevel 1 goto acopy
  21.  
  22. :acopy
  23. cls
  24. echo Please insert a blank formated disk in drive A
  25. echo Do you wish to continue (Y/N)
  26. getkey yn
  27. if errorlevel 2 goto vgacad
  28. if errorlevel 1 goto ai 
  29. :ai
  30. copy vcad.exe a:\
  31. ai:
  32. vcad
  33. vgacad
  34. goto start
  35.  
  36. :bcopy
  37. cls
  38. echo Please insert a blank formatted disk in drive B
  39. echo Do you wish to continue (Y/N)
  40. getkey yn
  41. if errorlevel 2 goto vgacad
  42. if errorlevel 1 goto bi
  43. :bi
  44. copy vcad.exe b:\
  45. b:
  46. vcad
  47. vgacad
  48. goto start
  49.  
  50. :ccopy
  51. cls
  52. echo This will create a directory on your hard drive called VGACAD
  53. echo and install the program there.
  54. echo Do you wish to continue (Y/N)
  55. getkey yn
  56. if errorlevel 2 goto vgacad
  57. if errorlevel 1 goto ci
  58.  
  59. :ci
  60. cls
  61. echo is this disk in drive A or B (A/B)
  62. getkey ab
  63. if errorlevel 2 goto cb
  64. if errorlevel 1 goto ca
  65.  
  66. :ca
  67. echo on
  68. md c:\vgacad
  69. copy vcad.exe c:\vgacad
  70. c:
  71. cd vgacad
  72. vcad
  73. vgacad
  74. echo off
  75. a:
  76. goto start
  77.  
  78. :cb
  79. echo on
  80. md c:\vgacad
  81. copy vcad.exe c:\vgacad
  82. c:
  83. cd vgacad
  84. vcad
  85. vgacad
  86. echo off
  87. b:
  88. goto start
  89.  
  90. :freecell
  91. cls
  92. freecell
  93. goto start
  94.  
  95. :quit
  96. cls
  97. echo thankyou for using the PCF Cover Disk.
  98. cd..
  99. pause
  100.  
  101.